home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1988 / 04 / smltpl.h < prev    next >
Text File  |  1988-04-28  |  625b  |  24 lines

  1. /*
  2.  * Header file for the small memory model template
  3.  *
  4.  * Written by Michael Babcock and Bill Hall
  5.  * April 20, 1988
  6.  *
  7.  */
  8.  
  9. /* This trick insures that globals are declared in only one place */
  10. #if !defined(EXTERN)
  11. #define EXTERN extern
  12. #endif
  13.  
  14. /* Declarations which need to be known in all C source files */
  15. LONG FAR PASCAL MainWndProc(HWND,unsigned,WORD,LONG);
  16. BOOL FAR InitProgram(HANDLE, HANDLE, LPSTR, int);
  17.  
  18. /* Resource string constants */
  19. #define IDS_APPNAME    100
  20.  
  21. /* Global variables */
  22. EXTERN HWND hWndMain;        /* main window handle */
  23. EXTERN char szAppName[10];    /* name of the application */
  24.